﻿# texture = filename								The icon that will show up in the Lens and on the map when this Focus is deployed
# modifier											The effects this Decree has on its state
# cost												The cost in AUT to set this Decree on a state (scales with Power Rank)
# unlocking_technologies							A list of technologies, at least one of which must be known to the country to use this Focus
# unlocking_laws									A list of laws, at least one which must be active in the country to use this Focus. If the country switches away from all unlocking laws the Focus will be removed
# valid												A trigger in state context that determines if the Decree is permitted or not; should invalidate the Decree on a weekly basis if found invalid 
# ai_weight											Scripted value which determines the chance of getting the Decree by AI

decree_strike_own_uninc_state = {
	texture = "gfx/interface/icons/decree/decree_violent_suppression.dds"		
	
	unlocking_technologies = {
		theories_of_strategic_strike
	}
	
	valid = {
		owner = { NOT = { has_law = law_type:law_guaranteed_liberties } }
		is_incorporated = no
		NOT = {
			has_modifier = mod_nuclear_colony_recently_nuked
		}
		owner = {
			is_ai = no
			has_journal_entry = je_Mod_Nuclear_Atomic_Weapon_Tracker
			## var:warhead_current_stockpile_sv >= 1
		}
	}

	cost = 10
	
	ai_weight = {
		value = 0
	}
}
